home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1999 #2 / Amiga Plus CD - 1999 - No. 2.iso / System-Boost / Workbench / TinyMeter / Source / TinyMeter_main / launchclass.h < prev    next >
C/C++ Source or Header  |  1997-02-27  |  2KB  |  78 lines

  1. #include <utility/tagitem.h>
  2.  
  3. #define lau_up                  0
  4. #define lau_down                1
  5. #define lau_over                2
  6.  
  7. #define lind_realcenter         0
  8. #define lind_center             1
  9. #define lind_left               2
  10. #define lind_right              3
  11.  
  12. #define LAU_TextFont            (TAG_USER + 22 )
  13. #define LAU_TextFormat          (TAG_USER + 23 )
  14. #define LAU_Label               (TAG_USER + 24 )
  15. #define LAU_File                (TAG_USER + 25 )
  16.  
  17. #define LAU_3D                  (TAG_USER + 26)
  18. #define LAU_Border              (TAG_USER + 27)
  19. #define LAU_Background          (TAG_USER + 28)
  20. #define LAU_ShadowLabel         (TAG_USER + 29)
  21.  
  22. #define LAU_List                (TAG_USER + 30)
  23. #define LAU_Down                (TAG_USER + 31)
  24.  
  25. #define LAU_ColLabel            (TAG_USER + 32)
  26. #define LAU_ColEntry            (TAG_USER + 33)
  27. #define LAU_ColHalfBright       (TAG_USER + 34)
  28. #define LAU_ColHalfShadow       (TAG_USER + 35)
  29. #define LAU_ColCursor           (TAG_USER + 36)
  30. #define LAU_ColBrightEdg        (TAG_USER + 37)
  31. #define LAU_ColDarkEdg          (TAG_USER + 38)
  32. #define LAU_ColBackground       (TAG_USER + 39)
  33.  
  34. #define LAU_Screen              (TAG_USER + 40)
  35. #define LAU_Indent              (TAG_USER + 41)
  36.  
  37. #define LAU_Type                (TAG_USER + 42)
  38. #define LAU_ImgHeight           (TAG_USER + 43)
  39. #define LAU_XPos                (TAG_USER + 44)
  40. #define LAU_Transparent         (TAG_USER + 45)
  41.  
  42. #define LAU_UsedColors  8
  43.  
  44. struct  LAU_Color
  45. {
  46.     UWORD   pen;
  47.     ULONG   red;
  48.     ULONG   green;
  49.     ULONG   blue;
  50. };
  51.  
  52. #ifndef GAU_Color_XXX
  53. struct  GAU_Color
  54. {
  55.     UWORD   pen;
  56.     ULONG   red;
  57.     ULONG   green;
  58.     ULONG   blue;
  59. };
  60. #define GAU_Color_XXX
  61. #endif
  62.  
  63.  
  64. struct lau_entry
  65. {
  66.     struct lau_entry   *next;
  67.     char               *lau_lbl;
  68.     char               *lau_cmd;
  69.     char               *lau_pth;
  70.     char               *lau_out;
  71.     UWORD               lau_type;
  72.     ULONG               lau_stack;
  73.     UWORD               width;
  74.     UWORD               height;
  75.     Object             *img;
  76. };
  77.  
  78.